home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / RCS / Net_AddrCmp.c,v < prev    next >
Text File  |  1992-03-27  |  2KB  |  94 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     92.03.27.16.17.09;  author voelker;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @when it compared types and found them not matching, it returned the
  17. wrong value (0 instead of 1)
  18. @
  19.  
  20.  
  21.  
  22. 1.1
  23. log
  24. @Initial revision
  25. @
  26. text
  27. @/* 
  28.  * Net_AddrCmp.c --
  29.  *
  30.  *    Routines to compare network addresses for equality..
  31.  *
  32.  * Copyright 1991 Regents of the University of California
  33.  * Permission to use, copy, modify, and distribute this
  34.  * software and its documentation for any purpose and without
  35.  * fee is hereby granted, provided that this copyright
  36.  * notice appears in all copies.  The University of California
  37.  * makes no representations about the suitability of this
  38.  * software for any purpose.  It is provided "as is" without
  39.  * express or implied warranty.
  40.  */
  41.  
  42. #ifndef lint
  43. static char rcsid[] = "$Header: /sprite/lib/forms/RCS/proto.c,v 1.5 91/02/09 13:24:44 ouster Exp $ SPRITE (Berkeley)";
  44. #endif /* not lint */
  45.  
  46. #include "sprite.h"
  47. #include "net.h"
  48.  
  49.  
  50. /*
  51.  *----------------------------------------------------------------------
  52.  *
  53.  * Net_AddrCmp --
  54.  *
  55.  *    Compares two network addresses for equality.  
  56.  *    
  57.  *
  58.  * Results:
  59.  *    0 if the addresses are equal, 1 otherwise
  60.  *
  61.  * Side effects:
  62.  *    None.
  63.  *
  64.  *----------------------------------------------------------------------
  65.  */
  66.  
  67. int
  68. Net_AddrCmp(aPtr, bPtr)
  69.     Net_Address        *aPtr;    /* First address. */
  70.     Net_Address        *bPtr;    /* Second address. */
  71. {
  72.     int result;
  73.     if (aPtr->type != bPtr->type) {
  74.     return 1;                    
  75.     }
  76.     switch(aPtr->type) {    
  77.     case NET_ADDRESS_ETHER:     
  78.         result = Net_EtherAddrCmp(aPtr->address.ether, bPtr->address.ether);
  79.         break;                        
  80.     case NET_ADDRESS_ULTRA:                    
  81.         result = Net_UltraAddrCmp(aPtr->address.ultra, bPtr->address.ultra);
  82.         break;                        
  83.     case NET_ADDRESS_FDDI:                    
  84.         result = Net_FDDIAddrCmp(aPtr->address.fddi, bPtr->address.fddi);
  85.         break;
  86.     case NET_ADDRESS_INET:
  87.         result = Net_InetAddrCmp(aPtr->address.inet, bPtr->address.inet);
  88.         break;
  89.     }
  90.     return result;
  91. }
  92.  
  93. @
  94.